home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / aimer / frmviseu.frm next >
Text File  |  1999-09-24  |  1KB  |  55 lines

  1. VERSION 5.00
  2. Begin VB.Form FrmViseur 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Oh My God That's The Funky Shit!!!!!!"
  5.    ClientHeight    =   4455
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   6450
  9.    ClipControls    =   0   'False
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   4455
  14.    ScaleWidth      =   6450
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.Line Line2 
  18.       X1              =   0
  19.       X2              =   6480
  20.       Y1              =   2400
  21.       Y2              =   2400
  22.    End
  23.    Begin VB.Line Line1 
  24.       X1              =   3360
  25.       X2              =   3360
  26.       Y1              =   -480
  27.       Y2              =   5280
  28.    End
  29. End
  30. Attribute VB_Name = "FrmViseur"
  31. Attribute VB_GlobalNameSpace = False
  32. Attribute VB_Creatable = False
  33. Attribute VB_PredeclaredId = True
  34. Attribute VB_Exposed = False
  35.  
  36. Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
  37.  
  38. Line1.X1 = (X)
  39. Line2.Y1 = (Y)
  40. Line1.X2 = (X)
  41. Line2.Y2 = (Y)
  42.  
  43. End Sub
  44.  
  45. Private Sub lblX_Click()
  46. End Sub
  47.  
  48. Private Sub tmrposition_Timer()
  49.  
  50. End Sub
  51.  
  52. Private Sub Form_Unload(Cancel As Integer)
  53. MsgBox " So That's the Funky Shit!!", , "Made By Gouranga"
  54. End Sub
  55.